home *** CD-ROM | disk | FTP | other *** search
- global gCurrentScore
-
- on beginSprite me
- xtc = gCurrentScore
- member("total score").text = "Total Score:" && string(xtc) && "pts"
- if (xtc >= 0) and (xtc <= 500) then
- puppetSound(5, "lose")
- member("job done").text = "Not Bad!"
- puppetSound(5, "lose")
- else
- if (xtc >= 501) and (xtc <= 1000) then
- puppetSound(5, "win")
- member("job done").text = "Pretty Good!"
- else
- if (xtc >= 1001) and (xtc <= 1300) then
- puppetSound(5, "win")
- member("job done").text = "Great Job!"
- else
- if xtc >= 1301 then
- puppetSound(5, "win")
- member("job done").text = "Excellent Showing!"
- end if
- end if
- end if
- end if
- end
-